4b28ddaa36404bd7485899ff8d888fe45ffe6a84,portal-impl/src/com/liferay/portal/lar/PortletImporter.java,PortletImporter,importPortletData,#PortletDataContext#String#PortletPreferences#Element#,369
Before Change
scopeLayoutId);
if (scopeLayout.hasScopeGroup()) {
Group scopeGroup = scopeLayout.getScopeGroup();
context.setGroupId(scopeGroup.getGroupId());
}
After Change
Group scopeGroup;
if (scopeLayout.hasScopeGroup()) {
scopeGroup = scopeLayout.getScopeGroup();
}
else {
String name = String.valueOf(scopeLayout.getPlid());